/* Overlay background */
#overlay {
    position: fixed;
    width: 80%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    display: none;
    z-index: 9998;
}

/* Side menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: #0800ff;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}